+2008-10-02 Christian Persch
+
+ Bug 554704 – gtkfilesystemmodel does too much work
+
+ * gtk/gtkfilesystemmodel.c: Replace g_slist_length()<1 check with a
+ simple NULL check.
+
2008-10-02 Christian Persch
Bug 554701 – filechooser spams console with useless warnings
if (folder)
info->cleanups = g_slist_prepend (info->cleanups, folder);
- else if (g_slist_length (info->files) == 1
+ else if ((info->files != NULL && info->files->next == NULL) /* g_slist_length == 1 */
&& g_file_equal (info->node->file, info->files->data))
{
/* Done, now call the function */
g_object_unref (info->files->data);
info->files = g_slist_remove (info->files, info->files->data);
- if (g_slist_length (info->files) < 1)
+ if (info->files == NULL)
{
/* Done, now call the function */
if (info->node)
}
g_object_unref (parent_file);
- if (g_slist_length (files) < 1)
+ if (files == NULL)
return;
/* Now we have all paths, except the root path */
g_object_unref (files->data);
files = g_slist_remove (files, files->data);
- if (g_slist_length (files) < 1)
+ if (files == NULL)
{
/* Done, now call the function */
if (node)